From: Vinicius Jose Latorre Date: Wed, 8 Dec 2010 19:25:11 +0000 (-0200) Subject: New version 13.2. (Bug#7582) X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~5433 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=45bb0354ba673b736a3f5dff91e06fbf483e9fec;p=emacs.git New version 13.2. (Bug#7582) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 27a6985a0f6..8945f423cf3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-12-08 Vinicius Jose Latorre + + * whitespace.el: New version 13.2. + (whitespace-cleanup-region): Tiny code fix. (Bug#7582) + 2010-12-08 Karl Fogel * bookmark.el: Adjust parameter names and doc strings to resolve diff --git a/lisp/whitespace.el b/lisp/whitespace.el index 4b8b9a61173..57858ed4067 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el @@ -6,7 +6,7 @@ ;; Author: Vinicius Jose Latorre ;; Maintainer: Vinicius Jose Latorre ;; Keywords: data, wp -;; Version: 13.1 +;; Version: 13.2 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre ;; This file is part of GNU Emacs. @@ -1652,12 +1652,12 @@ documentation." (whitespace-replace-action (if whitespace-indent-tabs-mode 'tabify 'untabify) rstart rend whitespace-space-before-tab-regexp - (if whitespace-indent-tabs-mode 1 2))) + (if whitespace-indent-tabs-mode 0 2))) ;; ACTION: replace SPACEs before TAB by TABs. ((memq 'space-before-tab::tab whitespace-style) (whitespace-replace-action 'tabify rstart rend - whitespace-space-before-tab-regexp 1)) + whitespace-space-before-tab-regexp 0)) ;; ACTION: replace TABs by SPACEs. ((memq 'space-before-tab::space whitespace-style) (whitespace-replace-action